home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbcaptur / readme.txt < prev   
Text File  |  1994-11-07  |  1KB  |  26 lines

  1. CAPTURE - Screen capture utility with Visual Basic 3 source code
  2.  
  3. This program is totally free and there are no warranties express or 
  4. implied.  (I think that's proper the legal mumbo-jumbo.)  If you can, 
  5. feel free to use this program in any way you please.
  6.  
  7. Capture is a small Visual Basic 3 program to capture a portion of the 
  8. Windows screen and save it in a bitmap.  To start it, just execute the 
  9. capture.exe program.  This will put a little form on the screen with 
  10. one button labeled "Capture".  When you press it, the form hides 
  11. itself and allows you to make a selection.  After you select part of 
  12. the screen, an input box appears prompting you for a filename.  The 
  13. .BMP extension is NOT automatically added to the filename.  To quit 
  14. the program, you must choose Close from the control menu.  There isn't 
  15. much error checking or anything fancy in this project, but it works.
  16.  
  17. This program uses several Windows API functions:
  18.  
  19.      - SetCapture, ReleaseCapture
  20.      - BitBlt, StretchBlt
  21.      - CreateDC, DeleteDC
  22.      - ClientToScreen
  23.  
  24. If you decide to use it for anything or have any comments, drop me a 
  25. line at maniv@aol.com.
  26.